home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Source / GNU / libg++ / libio / stdio / fdopen.c < prev    next >
C/C++ Source or Header  |  1994-02-15  |  122b  |  10 lines

  1. #include "libioP.h"
  2.  
  3. _IO_FILE *
  4. fdopen (fd, mode)
  5.      int fd;
  6.      const char *mode;
  7. {
  8.   return _IO_fdopen (fd, mode);
  9. }
  10.